home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ IE Update Interval 1.xpl < prev    next >
Text File  |  2003-11-20  |  1KB  |  30 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="2"
  3. "COUNT"="1"
  4. "UIPATH"="Internet\Internet Explorer\Updates"
  5. "NAME"="IE Update Interval"
  6. "VERSION"="1.03"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Interval Length"
  9. "DESCRIPTION 1"="Every so often, Internet Explorer will check to see if an updated version is available (you can disable this elsewhere in X-Setup). Here you can control how often it checks for a new version."
  10. "DESCRIPTION 2"="Type the length of time (in days) in the field - default is 30 days. To check once every day, type '1', for example."
  11. "AUTHOR"="Xteq Systems (Neil Turner)"
  12. "CONTACTURL"="http://www.xteq.com"
  13. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  14. "COMMENT 1"="Downloaded IE on Monday, Installed it on Tuesday, Was using it by Wednesday, and on Thursday, Friday and Saturday - it crashed on Sunday."
  15.  
  16. sP="HKLM\Software\Microsoft\Internet Explorer\Main\Update_Check_Interval"
  17.  
  18. Sub Plugin_Initialize 
  19.  s=RegReadValue(sP)
  20.  Call SetUIElement(1,s)
  21. End Sub
  22.  
  23. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  24.  s=GetUIElement(1)
  25.  Call RegWriteValue(sP,s,2)
  26. End Sub
  27.  
  28. Sub Plugin_Terminate 
  29. End Sub
  30.